home *** CD-ROM | disk | FTP | other *** search
/ SPACE 2 / SPACE - Library 2 - Volume 1.iso / apps / 165 / applic / diffixer.doc < prev    next >
Encoding:
Text File  |  1987-08-18  |  1.6 KB  |  56 lines

  1. Greetings, 
  2.  
  3.      I presently use Data Manager to keep some records which include some 
  4. numeric data.  I also use A-Calc Prime as my spreadsheet.  Well, I thought 
  5. it would be neat to port data from Data Manager to A-Calc Prime.  According 
  6. to the Data Manager manual, selecting that you want to send the data to 
  7. SWIFTCALC will save it in a "DIF" file, which are compatible with any 
  8. spreadsheet. Well, wrong. The DIF file that Data Manager creates, is 
  9. corrupted. 
  10.  
  11.      So, I wrote a program that takes a corrupted Data Manager DIF file and 
  12. outputs a correct DIF file that can be read by A-Calc Prime. 
  13.  
  14.      The problem is this: 
  15.  
  16. TUPLES 
  17. 6,  8 
  18. DATA 
  19.  
  20.      Should really be: 
  21.  
  22. TUPLES 
  23. 6,  8 
  24. "" 
  25. DATA 
  26.  
  27.      Very simple to fix. This program is written in GFA Basic, and compiled 
  28. with its compiler. Notice its high speed, especially with long files. I could 
  29. not decide what would be a good number for the largest file it can handle, 
  30. so I left it at 3 megs. If you are gonna use your MEGA 4 to fix a DIF file 
  31. larger than 3 megs, sorry. :-) 
  32.  
  33.      If you find any problems, let me know, so I can fix it. Contact me at: 
  34.  
  35. Rick Flashman 
  36. The Computer Bug, Inc. 
  37. Hampshire Mall 
  38. Hadley, MA  01035 
  39. (413) 584-7722 
  40. or 
  41. R-FLASHMAN on GENIE 
  42. or 
  43. FLASH@UMASS.BITNET 
  44. or 
  45. FLASH@CS.EDU 
  46.  
  47.      The program is kind of obvious, but in case you have trouble, try this: 
  48.  
  49. 1. Make sure you have enough disk space, remember it makes an entire NEW 
  50.    DIF file just as big as the original. 
  51.  
  52. 2. First select the file you want fixed, THEN select the name you want it 
  53.    saved under. 
  54.  
  55. Happy Computing! 
  56.